home *** CD-ROM | disk | FTP | other *** search
/ Hyper Animation Series: Viper (Limited Edition) / Hyper Animation Series: VIPER (Limited Edition).iso / pc / SYSTEM / class / PlayerShotIndex.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-04  |  843 b   |  29 lines

  1. abstract class PlayerShotIndex extends StgObjectIndex {
  2.    protected PlayerShotAction psaAction;
  3.    protected int nPower;
  4.  
  5.    public PlayerShotIndex(Position var1, SpriteAnimeData var2, Position var3, int var4, PlayerShotAction var5, int var6) {
  6.       super(var1, var2, var3, var4);
  7.       this.psaAction = var5;
  8.       this.nPower = var6;
  9.    }
  10.  
  11.    public void setPlayerShotAction(PlayerShotAction var1) {
  12.       this.psaAction = var1;
  13.    }
  14.  
  15.    public void setPower(int var1) {
  16.       this.nPower = var1;
  17.    }
  18.  
  19.    public PlayerShotAction getPlayerShipAction() {
  20.       return this.psaAction;
  21.    }
  22.  
  23.    public int getPower() {
  24.       return this.nPower;
  25.    }
  26.  
  27.    public abstract void action();
  28. }
  29.